home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb / foo / remote-multi.shar / Remote_Makefile < prev    next >
Encoding:
Makefile  |  1989-09-20  |  979 b   |  30 lines

  1. #    Makefile for the remote server for GDB, the GNU debugger.
  2. #    Copyright (C) 1986, 1989 Free Software Foundation, Inc.
  3. # This file is part of GDB.
  4. # GDB is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 1, or (at your option)
  7. # any later version.
  8. # GDB is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with GDB; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  15.  
  16. CFLAGS = -g 
  17. CC = cc
  18.  
  19. SERVER = remote_server.o\
  20.          remote_inflow.o\
  21.          remote_utils.o\
  22.          remote_gutils.o 
  23.  
  24. prog : $(SERVER)
  25.     $(CC) -g -o serve $(SERVER) 
  26.